return (Cont.)
Pascal C/C++
wfunction f …
w ….
w f := somevalue;
w     goto 1;
w …
w 1:
w    end
int f(…)
{
     …
     return(somevalue);
     …
}